00450d06500caaa7e8dc2ede38745325246bb93b,src/main/java/com/hantsylabs/restexample/springmvc/config/SecurityConfig.java,SecurityConfig,configure,#HttpSecurity#,40

Before Change


			.permitAll()
                    .and()
                        .securityContext()
                        .securityContextRepository(new NullSecurityContextRepository())
                    .and()
                        .httpBasic()
                    .and()
                        .csrf()

After Change


    			.permitAll()
            .and()
                .securityContext()
                .securityContextRepository(new NullSecurityContextRepository())
            .and()
                .httpBasic()
            .and()
                .csrf()
                .disable();

                    // .formLogin().loginPage("/login").permitAll().and().logout()